/* =====================================================
   DESKTOP ALL SIZE
   For all desktop >= 769px
   Do not write @media in this file.
   ===================================================== */



/* ===== GLOBAL VIEWPORT STABLE FIX START ===== */

html {
  overflow-y: scroll !important; /* 永远保留右边 scrollbar 空间，避免换 page 宽度跳 */
  scrollbar-gutter: stable !important; /* 现代浏览器稳定 scrollbar 空间 */
}

html,
body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important; /* 防止 100vw 拉出横向超出 */
}

*,
*::before,
*::after {
  box-sizing: border-box !important;
}

/* ===== GLOBAL VIEWPORT STABLE FIX END ===== */


   /* ===== 00 DESKTOP GLOBAL START ===== */

html,
body {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
}

*,
*::before,
*::after {
  box-sizing: border-box !important;
}

img,
video {
  max-width: 100% !important;
}

.container {
  width: min(1180px, calc(100% - 64px)) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}


/* ===== 00 DESKTOP GLOBAL END ===== */


/* ===== 01 DESKTOP NAVIGATOR START ===== */

/* desktop navbar CSS 放这里 */

/* ===== 01 DESKTOP NAVIGATOR END ===== */


/* ===== 02 DESKTOP FOOTER START ===== */

/* desktop footer CSS 放这里 */

/* ===== 02 DESKTOP FOOTER END ===== */